//Bow.h #include #include using namespace std; class Bow { //data member declarations string color; bool drawn; int numOfArrows; public: Bow(string aColor); //constructor ~Bow(); //destructor //methods void draw(); int fire(); };